body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  background: #1f1f2e;
  padding: 30px;
  border-radius: 15px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.home-button {
  background-color: #4a90e2;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  
}

/* Hover effect */
.home-button:hover {
  background-color: #357ABD;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

/* Active click effect */
.home-button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #00f9ff;
}
.icon-small {
  width: 50px;         /* Adjust size as needed */
  height: 50px;
  vertical-align: middle;  /* Aligns with text */
  margin-right: 16px;       /* Space between icon and text */
}


.top-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.btn, .btn-outline {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn {
  background-color: #00f9ff;
  color: #1f1f2e;
  border: none;
}

.btn:hover {
  background-color: #00d4e4;
}

.btn-outline {
  background: transparent;
  color: #00f9ff;
  border: 2px solid #00f9ff;
}

.btn-outline:hover {
  background-color: rgba(0, 249, 255, 0.1);
}

.drop-area {
  border: 2px dashed #00f9ff;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  margin-bottom: 20px;
}

.drop-area:hover {
  background-color: rgba(0, 249, 255, 0.1);
}

.drop-area span {
  color: #00f9ff;
  text-decoration: underline;
}

input[type="file"] {
  display: none;
}

.preview canvas {
  margin-bottom: 20px;
  max-width: 100%;
  border: 1px solid #00f9ff;
  border-radius: 5px;
}


section {
  background-color: #ffffff;
  margin: 30px auto;
  padding: 25px;
  max-width: 850px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

h1 {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1c3d5a;
}

h2 {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #1c3d5a;
  font-size: 26px;
  margin-bottom: 12px;
  margin-top: 25px;
}

h3 {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #1c3d5a;
  font-size: 20px;
  margin-top: 20px;
}

p, li {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
}

ul, ol {
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}